projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4c0510
)
(flymake-goto-file-and-line): Fix typo in string.
author
Martin Rudalics
<rudalics@gmx.at>
Sat, 17 Nov 2007 09:46:37 +0000
(09:46 +0000)
committer
Martin Rudalics
<rudalics@gmx.at>
Sat, 17 Nov 2007 09:46:37 +0000
(09:46 +0000)
lisp/progmodes/flymake.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/flymake.el
b/lisp/progmodes/flymake.el
index 5538bd8984a4d941e935f022f45cdf431132a34d..1e144282de53231dd7cf312bd408b0c763d380a1 100644
(file)
--- a/
lisp/progmodes/flymake.el
+++ b/
lisp/progmodes/flymake.el
@@
-1268,10
+1268,9
@@
For the format of LINE-ERR-INFO, see `flymake-ler-make-ler'."
(defun flymake-goto-file-and-line (file line)
"Try to get buffer for FILE and goto line LINE in it."
(if (not (file-exists-p file))
- (flymake-log 1 "file %s does not exists" file)
- (progn
- (find-file file)
- (goto-line line))))
+ (flymake-log 1 "File %s does not exist" file)
+ (find-file file)
+ (goto-line line)))
;; flymake minor mode declarations
(defvar flymake-mode-line nil)